13 resultados para cow

em Deakin Research Online - Australia


Relevância:

20.00% 20.00%

Publicador:

Resumo:

Seasonal milk production in Australia has a large impact on the manufacture of cheddar cheese, because the variable milk quality affects cheese moisture content and yield. The influence of cow diet on the composition of milk was investigated together with the effects of variation in milk composition on Cheddar cheese composition and yield. The composition of milk, especially the protein and mineral content, from cows offered diets comprising different energy and protein supplements was correlated with the composition and yield of Cheddar cheese produced.

Relevância:

10.00% 10.00%

Publicador:

Resumo:

This paper describes a tool that mimics the design of the remote procedure call (RPC) system to support the building of replicated objects in a cluster of workstations (COW). The tool includes an interface definition language for describing a replica group, a language preprocessor and a runtime library system. The paper also presents one example and discusses some performance issues for replicated objects.

Relevância:

10.00% 10.00%

Publicador:

Resumo:

Distributed Shared Memory (DSM) provides programmers with a shared memory environment in systems where memory is not physically shared. Clusters of Workstations (COWs), an often untapped source of computing power, are characterised by a very low cost/performance ratio. The combination of Clusters of Workstations (COWs) with DSM provides an environment in which the programmer can use the well known approaches and methods of programming for physically shared memory systems and parallel processing can be carried out to make full use of the computing power and cost advantages of the COW. The aim of this research is to synthesise and develop a distributed shared memory system as an integral part of an operating system in order to provide application programmers with a convenient environment in which the development and execution of parallel applications can be done easily and efficiently, and which does this in a transparent manner. Furthermore, in order to satisfy our challenging design requirements we want to demonstrate that the operating system into which the DSM system is integrated should be a distributed operating system. In this thesis a study into the synthesis of a DSM system within a microkernel and client-server based distributed operating system which uses both strict and weak consistency models, with a write-invalidate and write-update based approach for consistency maintenance is reported. Furthermore a unique automatic initialisation system which allows the programmer to start the parallel execution of a group of processes with a single library call is reported. The number and location of these processes are determined by the operating system based on system load information. The DSM system proposed has a novel approach in that it provides programmers with a complete programming environment in which they are easily able to develop and run their code or indeed run existing shared memory code. A set of demanding DSM system design requirements are presented and the incentives for the placement of the DSM system with a distributed operating system and in particular in the memory management server have been reported. The new DSM system concentrated on an event-driven set of cooperating and distributed entities, and a detailed description of the events and reactions to these events that make up the operation of the DSM system is then presented. This is followed by a pseudocode form of the detailed design of the main modules and activities of the primitives used in the proposed DSM system. Quantitative results of performance tests and qualitative results showing the ease of programming and use of the RHODOS DSM system are reported. A study of five different application is given and the results of tests carried out on these applications together with a discussion of the results are given. A discussion of how RHODOS’ DSM allows programmers to write shared memory code in an easy to use and familiar environment and a comparative evaluation of RHODOS DSM with other DSM systems is presented. In particular, the ease of use and transparency of the DSM system have been demonstrated through the description of the ease with which a moderately inexperienced undergraduate programmer was able to convert, write and run applications for the testing of the DSM system. Furthermore, the description of the tests performed using physically shared memory shows that the latter is indistinguishable from distributed shared memory; this is further evidence that the DSM system is fully transparent. This study clearly demonstrates that the aim of the research has been achieved; it is possible to develop a programmer friendly and efficient DSM system fully integrated within a distributed operating system. It is clear from this research that client-server and microkernel based distributed operating system integrated DSM makes shared memory operations transparent and almost completely removes the involvement of the programmer beyond classical activities needed to deal with shared memory. The conclusion can be drawn that DSM, when implemented within a client-server and microkernel based distributed operating system, is one of the most encouraging approaches to parallel processing since it guarantees performance improvements with minimal programmer involvement.

Relevância:

10.00% 10.00%

Publicador:

Resumo:

Current attempts to manage parallel applications on Clusters of Workstations (COWs) have either generally followed the parallel execution environment approach or been extensions to existing network operating systems, both of which do not provide complete or satisfactory solutions. The efficient and transparent management of parallelism within the COW environment requires enhanced methods of process instantiation, mapping of parallel process to workstations, maintenance of process relationships, process communication facilities, and process coordination mechanisms. The aim of this research is to synthesise, design, develop and experimentally study a system capable of efficiently and transparently managing SPMD parallelism on a COW. This system should both improve the performance of SPMD based parallel programs and relieve the programmer from the involvement into parallelism management in order to allow them to concentrate on application programming. It is also the aim of this research to show that such a system, to achieve these objectives, is best achieved by adding new special services and exploiting the existing services of a client/server and microkernel based distributed operating system. To achieve these goals the research methods of the experimental computer science should be employed. In order to specify the scope of this project, this work investigated the issues related to parallel processing on COWs and surveyed a number of relevant systems including PVM, NOW and MOSIX. It was shown that although the MOSIX system provide a number of good services related to parallelism management, none of the system forms a complete solution. The problems identified with these systems include: instantiation services that are not suited to parallel processing; duplication of services between the parallelism management environment and the operating system; and poor levels of transparency. A high performance and transparent system capable of managing the execution of SPMD parallel applications was synthesised and the specific services of process instantiation, process mapping and process interaction detailed. The process instantiation service designed here provides the capability to instantiate parallel processes using either creation or duplication methods and also supports multiple and group based instantiation which is specifically design for SPMD parallel processing. The process mapping service provides the combination of process allocation and dynamic load balancing to ensure the load of a COW remains balanced not only at the time a parallel program is initialised but also during the execution of the program. The process interaction service guarantees to maintain transparently process relationships, communications and coordination services between parallel processes regardless of their location within the COW. The combination of these services provides an original architecture and organisation of a system that is capable of fully managing the execution of SPMD parallel applications on a COW. A logical design of a parallelism management system was developed derived from the synthesised system and was shown that it should ideally be based on a distributed operating system employing the client server model. The client/server based distributed operating system provides the level of transparency, modularity and flexibility necessary for a complete parallelism management system. The services identified in the synthesised system have been mapped to a set of server processes including: Process Instantiation Server providing advanced multiple and group based process creation and duplication; Process Mapping Server combining load collection, process allocation and dynamic load balancing services; and Process Interaction Server providing transparent interprocess communication and coordination. A Process Migration Server was also identified as vital to support both the instantiation and mapping servers. The RHODOS client/server and microkernel based distributed operating system was selected to carry out research into the detailed design and to be used for the implementation this parallelism management system. RHODOS was enhanced to provide the required servers and resulted in the development of the REX Manager, Global Scheduler and Process Migration Manager to provide the services of process instantiation, mapping and migration, respectively. The process interaction services were already provided within RHODOS and only required some extensions to the existing Process Manager and IPC Managers. Through a variety of experiments it was shown that when this system was used to support the execution of SPMD parallel applications the overall execution times were improved, especially when multiple and group based instantiation services are employed. The RHODOS PMS was also shown to greatly reduce the programming burden experienced by users when writing SPMD parallel applications by providing a small set of powerful primitives specially designed to support parallel processing. The system was also shown to be applicable and has been used in a variety of other research areas such as Distributed Shared Memory, Parallelising Compilers and assisting the port of PVM to the RHODOS system. The RHODOS Parallelism Management System (PMS) provides a unique and creative solution to the problem of transparently and efficiently controlling the execution of SPMD parallel applications on COWs. Combining advanced services such as multiple and group based process creation and duplication; combined process allocation and dynamic load balancing; and complete COW wide transparency produces a totally new system that addresses many of the problems not addressed in other systems.

Relevância:

10.00% 10.00%

Publicador:

Resumo:

This study has utilised comparative functional genomics to exploit animal models with extreme adaptation to lactation to identify candidate genes that specifically regulate protein synthesis in the cow mammary gland. Increasing milk protein production is valuable to the dairy industry. The lactation strategies of both the Cape fur seal (Artocephalus pusillus pusillus) and the tammar wallaby (Macropus eugenii) include periods of high rates of milk protein synthesis during an established lactation and therefore offer unique models to target genes that specifically regulate milk protein synthesis. Global changes in mammary gene expression in the Cape fur seal, tammar wallaby, and the cow (Bos taurus) were assessed using microarray analysis. The folate receptor α (FOLR1) showed the greatest change in gene expression in all three species [cow 12.7-fold (n = 3), fur seal 15.4-fold (n = 1), tammar 2.4-fold (n = 4)] at periods of increased milk protein production. This compliments previous reports that folate is important for milk protein synthesis and suggests FOLR1 may be a key regulatory point of folate metabolism for milk protein synthesis within mammary epithelial cells (lactocytes). These data may have important implications for the dairy industry to develop strategies to increase milk protein production in cows. This study illustrates the potential of comparative genomics to target genes of interest to the scientific community.

Relevância:

10.00% 10.00%

Publicador:

Resumo:

An experiment was conducted to measure the effect of diet on circulating concentrations of metabolic hormones and metabolites in cows undergoing extended lactations. Two groups of 6 Holstein-Friesian cows managed for lactations of 670 d were used in the experiment. One group was fully fed on a total mixed ration (TMR), whereas the other group grazed fresh pasture supplemented with grain (P+G). On 7 occasions between 332 and 612 d in milk, concentrations of metabolic hormones and glucose were measured in the blood plasma of each cow. Cows fed TMR gained more weight and body condition than P+G cows, but did not produce more milk during the study period. Only 3 of the TMR cows continued to lactate until 612 d in milk compared with all 6 of the P+G cows. Blood plasma from cows fed TMR had higher concentrations of glucose, insulin, glucagon, insulin-like growth factor 1, and leptin, but lower concentrations of growth hormone, than that from P+G cows. These changes were consistent with the preferential deposition of energy into adipose tissue at the expense of milk production and presumably were induced by a diet that provided precursors for gluconeogenesis that were in excess of the requirements for maintenance and prevailing milk production. The mechanism responsible for some TMR cows putting on excess weight and reducing or ceasing milk production is uncertain, but this observation has important implications for the nutritional management of cows in extended lactation programs.

Relevância:

10.00% 10.00%

Publicador:

Resumo:

Mammary explants can be hormonally stimulated to mimic the biochemical changes that occur during lactogenesis. Previous studies using mammary explants concluded that the addition of exogenous macromolecules were required for mammary epithelial cells to remain viable in culture. The present study examines the survival of mammary explants from the dairy cow using milk protein gene expression as a functional marker of lactation and cell viability. Mammary explants cultured from late pregnant cows mimicked lactogenesis and showed significantly elevated milk protein gene expression after 3 days of culture with lactogenic hormones. The subsequent removal of exogenous hormones from the media for 10 days resulted in the down-regulation of milk protein genes. During this time, the mammary explants remained hormone responsive, the alveolar architecture was maintained and the expression of milk protein genes was re-induced after a second challenge with lactogenic hormones. We report that a population of bovine mammary epithelial cells have an intrinsic capacity to remain viable and hormone responsive for extended periods in chemically defined media without any exogenous macromolecules. In addition, we found mammary explant viability was dependent on de novo protein and RNA synthesis. Global functional microarray analysis showed that differential expression of genes involved in energy production, immune responses, oxidative stress and apoptosis signalling might contribute to cell survival. As the decline in milk production in dairy cattle after peak lactation results in considerable economic loss, the identification of novel survival genes may be used as genetic markers for breeding programmes to improve lactational persistency in dairy cows.

Relevância:

10.00% 10.00%

Publicador:

Resumo:

BACKGROUND/OBJECTIVES:


Food is responsible for around one-fifth of all greenhouse gas (GHG) emissions from products consumed in the UK, the largest contributor of which is meat and dairy. The Committee on Climate Change have modelled the impact on GHG emissions of three dietary scenarios for food consumption in the UK. This paper models the impact of the three scenarios on mortality from cardiovascular disease and cancer.
SUBJECTS/METHODS:


A previously published model (DIETRON) was used. The three scenarios were parameterised by fruit and vegetables, fibre, total fat, saturated fat, monounsaturated fatty acids, polyunsaturated fatty acids, cholesterol and salt using the 2008 Family Food Survey. A Monte Carlo simulation generated 95% credible intervals.
RESULTS:


Scenario 1 (50% reduction in meat and dairy replaced by fruit, vegetables and cereals: 19% reduction in GHG emissions) resulted in 36 910 (30 192 to 43 592) deaths delayed or averted per year. Scenario 2 (75% reduction in cow and sheep meat replaced by pigs and poultry: 9% reduction in GHG emissions) resulted in 1999 (1739 to 2389) deaths delayed or averted. Scenario 3 (50% reduction in pigs and poultry replaced with fruit, vegetables and cereals: 3% reduction in GHG emissions) resulted in 9297 (7288 to 11 301) deaths delayed or averted.
CONCLUSION:


Modelled results suggest that public health and climate change dietary goals are in broad alignment with the largest results in both domains occurring when consumption of all meat and dairy products are reduced. Further work in real-life settings is needed to confirm these results.

Relevância:

10.00% 10.00%

Publicador:

Resumo:

Softness of apparel textiles is a major attribute sought by consumers. There is surprisingly little objective information on the softness properties of rare animal fibres, particularly cashmere, alpaca and mohair. Samples of these and other rare animal fibres from different origins of production and processors were objectively measured for fibre diameter, fibre curvature (FC, crimp) and resistance to compression (softness). While there were curvilinear responses of resistance to compression to FC and to mean fibre diameter, FC accounted for much more of the variance in resistance to compression. Fibre type was an important determinant of resistance to compression. The softest fibres were alpaca, mohair and cashgora and all of the fibres measured were softer than most Merino wool. Quivet, llama, camel, guanaco, vicuña, yak wool, bison wool, dehaired cow down and Angora rabbit were also differentiated from alpaca, mohair and cashmere. There were important differences in the softness and FC of cashmere from different origins with cashmere from newer origins of production (Australia, New Zealand and USA) having lower resistance to compression than cashmere from traditional sources of China and Iran. Cashmere from different origins was differentiated on the basis of resistance to compression, FC and fibre diameter. Cashgora was differentiated from cashmere by having a lower FC and lower resistance to compression. There were minority effects of colour and fibre diameter variation on resistance to compression of cashmere. The implications of these findings for the identification and use of softer raw materials are discussed.

Relevância:

10.00% 10.00%

Publicador:

Resumo:

Felting is a unique attribute of animal fibres used for the production of a range of industrial and apparel textiles. Felting can be an adverse attribute as a consequence of dimensional shrinkage during laundering. As there is little objective information regarding the feltability of rare animal fibres or the factors which may affect felting three investigations were undertaken. A survey (n = 114) of the feltability of cashmere from different origins of production, cashgora, quivet, camel hair, llama, guanaco, bison wool, cow fibre and yak wool quantified the large variation between and within these fibre types. Cashmere from some origins and cashgora produced higher feltball density than the other fibres. Different nutritional management of cashmere goats (n = 35) showed that cashmere grown by poorly fed goats had a lower propensity to felt compared with cashmere grown by better fed goats. A consequence of the progressive blending of cashmere (n = 27) with a low propensity to felt superfine wool (high fibre curvature) increased the propensity of the blend to felt, but when the same cashmere was blended with low curvature superfine wool, there was little or no effect on feltability. The mechanisms which lead to variance in feltability of these fibres were quantified with multiple regression modelling. The mechanisms were similar to those reported for wools, namely variations in the resistance to compression, fibre curvature and mean fibre diameter, with likely effects of fibre crimp form. It is possible to source cashmere and other animal fibres which have different propensities to felt and therefore to produce textiles which are likely to have different textile properties.

Relevância:

10.00% 10.00%

Publicador:

Resumo:

Hypersensitivity to the chicken egg is a widespread disorder mainly affecting 1-2% of children worldwide. It is the second most common food allergy in children, next to cow's milk allergy. Egg allergy is mainly caused by hypersensitivity to four allergens found in the egg white; ovomucoid, ovalbumin, ovotransferrin and lysozyme. However, some research suggests the involvement of allergens exclusively found in the egg yolk such as chicken serum albumin and YGP42, which may play a crucial role in the overall reaction. In egg allergic individuals, these allergens cause conditions such as itching, atopic dermatitis, bronchial asthma, vomiting, rhinitis, conjunctivitis, laryngeal oedema and chronic urticaria, and anaphylaxis. Currently there is no permanent cure for egg allergy. Upon positive diagnosis for egg allergy, strict dietary avoidance of eggs and products containing traces of eggs is the most effective way of avoiding future hypersensitivity reactions. However, it is difficult to fully avoid eggs since they are found in a range of processed food products. An understanding of the mechanisms of allergic reactions, egg allergens and their prevalence, egg allergy diagnosis and current treatment strategies are important for future studies. This review addresses these topics and discusses both egg white and egg yolk allergy as a whole.

Relevância:

10.00% 10.00%

Publicador:

Resumo:

Knowledge of diet is critical in interpreting the ecological roles of marine top predators and provides information towards their conservation and management. The Falkland Islands hold the largest number of breeding gentoo penguins. Yet knowledge of gentoo penguin diet at the Falklands is limited to either broad taxonomic divisions of prey items or dietary samples collected only on a single day. This study is the first to investigate gentoo penguin diet at Cow Bay, Falklands, to the species level, over repeated sampling intervals during the breeding period. Through stomach content analysis, we determined diet over a large temporal scale (2002/2003/2004–2011/2012/2013) and between the guard and crèche periods of chick rearing. The principle prey item by reconstituted mass was rock cod fish Patagonotothen spp., for all periods (47–78 %) except that of the 2012/2013 crèche period (19 %) when Falkland herring Sprattus fugensis made up the bulk of the diet (52 %). Of the cephalopods recovered, Patagonian squid Doryteuthis gahi was prominent (1–24 %), while crustaceans contributed negligibly to gentoo penguin diet. Our findings revealed that gentoo penguins breeding at the Falkland Islands were primarily demersal foragers with an ability for pelagic feeding. Diet choice appears to reflect prey availability.